1 /*
2 * Angkor Web Framework
3 *
4 * Distributable under LGPL license.
5 * See terms of license at gnu.org.
6 */
7 package com.tirsen.angkor.event;
8
9 import java.util.EventObject;
10
11 /***
12 * Indicates the event of a component-defined action.
13 *
14 * <!-- $Id: ActionEvent.java,v 1.2 2002/10/07 19:49:19 tirsen Exp $ -->
15 *
16 * @author $Author: tirsen $
17 * @version $Revision: 1.2 $
18 * @see ActionListener
19 */
20 public class ActionEvent extends EventObject
21 {
22 public ActionEvent(Object source)
23 {
24 super(source);
25 }
26 }
This page was automatically generated by Maven